char Interface

public interface char

Module Procedures

private pure function char_auto(string) result(char_string)

Convert a varying string into a character string (automatic length)

Arguments

Type IntentOptional Attributes Name
type(varying_string), intent(in) :: string

Return Value character(len=len)

private pure function char_fixed(string, length) result(char_string)

Convert a varying string into a character string (fixed length)

Arguments

Type IntentOptional Attributes Name
type(varying_string), intent(in) :: string
integer, intent(in) :: length

Return Value character(len=length)